home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000246_news@newsmaster….columbia.edu _Wed Feb 18 11:32:32 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA04263
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 18 Feb 1998 11:32:32 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA17799
  7.     for kermit.misc@watsun; Wed, 18 Feb 1998 11:32:31 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Prob Kermit Server under Linux
  12. Date: 18 Feb 1998 16:32:28 GMT
  13. Organization: Columbia University
  14. Lines: 34
  15. Message-ID: <6cf2es$8mt$1@apakabar.cc.columbia.edu>
  16. References: <6cedet$e0u$1@peuplier.wanadoo.fr>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8436
  19.  
  20. In article <6cedet$e0u$1@peuplier.wanadoo.fr>,
  21. Ralf Meuser <Ralf.Meuser@wanadoo.fr> wrote:
  22. : I'm using the RedHat Linux and kermit 6.0.192.  When i start kermit
  23. : and do sh com i get this:
  24. : line /dev/cua1
  25. : modem zyxel
  26. : RTS on
  27. : ...
  28. : now i type server and kermit starts the server
  29. : ...
  30. : when somebody gets connected the the linux machine my modems answers and the
  31. : filetransfert starts.  when the file transfert is finished the client ends
  32. : on his kermit with hangup.
  33. : ...
  34. : at this moment my kermit stops to serve.
  35. Because the connection was lost.
  36.  
  37. Now you want it to answer another call?  You have to take some explicit
  38. action for that to happen.  Otherwise you are exposing your computer to
  39. easy breakins and other security risks.
  40.  
  41. You can use something like this:
  42.  
  43.   while 1 { answer, if success serve }
  44.  
  45. Of course there are many other possibilites; it depends on exactly what
  46. you want to do.
  47.  
  48. For a detailed explanation, read the manual:
  49.  
  50.   http://www.columbia.edu/kermit/ck60manual.html
  51.  
  52. - Frank